Document Library for WinForms | ComponentOne
C1.Win.C1Document.4.5.2 Assembly / C1.Win.C1Document Namespace / AsyncActionProgressHandler<TProgress> Delegate
The type of the progress data.
The asynchronous action.
The progress information.

In This Topic
    AsyncActionProgressHandler<TProgress> Delegate
    In This Topic
    Represents a method that handles progress update events of an asynchronous action that provides progress updates.
    Syntax
    'Declaration
     
    Public Delegate Sub AsyncActionProgressHandler(Of TProgress)( _
       ByVal asyncInfo As IAsyncActionWithProgress(Of TProgress), _
       ByVal progressInfo As TProgress _
    ) 
    public delegate void AsyncActionProgressHandler<TProgress>( 
       IAsyncActionWithProgress<TProgress> asyncInfo,
       TProgress progressInfo
    )

    Parameters

    asyncInfo
    The asynchronous action.
    progressInfo
    The progress information.

    Type Parameters

    TProgress
    The type of the progress data.
    See Also